When upgrading from StyleGrid 4.5.x or 5.x then the following things have changed:

1)
     StyleGridPicture objects now auto detect transparency based
     on the setting in REALbasic Picture objects.     

     So to migrate your project you need to:

     Change code like this:
          m_oKey = new StyleGridPicture(Key,5,1,true)

     To code like this:
	  m_oKey = new StyleGridPicture(Key,5,1)

     (You also need to make sure the transparent flag is correctly set on the
      REALbasic picture object)
